Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
explain-error
Advanced tools
wrap errors in explainations.
In node sometimes something fails because of some internal detail, but then this error may be passed back somewhere else, too often, context is lost.
var explain = require('explain-error')
//stat a file that does not exist. this will error, add an explaination.
function explainedError(cb) {
require('fs').stat('neoatuhrcoahkrcophkr', function (err) {
if(err) cb(explain(err, 'asked for a file that certainly did not exist'))
else cb()
})
}
//show that this works even with multiple layers of explainations.
explainedError(function (err) {
throw explain(err, 'called an function that was expected to fail')
})
output:
fs.stat
does not show where it was called from,
but at least now you know what happened after that.
Error: called an function that was expected to fail
at /home/dominic/c/explain-error/example.js:11:9
at /home/dominic/c/explain-error/example.js:5:13
Error: asked for a file that certainly did not exist
at /home/dominic/c/explain-error/example.js:5:16
at Object.oncomplete (fs.js:107:15)
Error: ENOENT, stat neoatuhrcoahkrcophkr
of course, this adds lines to your errors that will do not look like normal js errors. will this break all your tools? if so please post an issue.
MIT
FAQs
wrap errors in explainations.
We found that explain-error demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.